#!/bin/bash

if [ $# -lt 1 ] 
then
  echo Usage: $0 file [options]
  exit 0
fi


bst $*
echo "---------------------------"
unbst $1.bst
echo "==========================="
cmp $1 $1.bst.y
echo -n "Compressed file size: " `wc -c $1.bst`
echo